-
Notifications
You must be signed in to change notification settings - Fork 832
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fixup places where it should be CCM instead of GCM. #7218
Conversation
wolfssl/internal.h
Outdated
@@ -1743,6 +1743,7 @@ enum Misc { | |||
AES_CCM_16_AUTH_SZ = 16, /* AES-CCM-16 Auth Tag length */ | |||
AES_CCM_8_AUTH_SZ = 8, /* AES-CCM-8 Auth Tag Length */ | |||
AESCCM_NONCE_SZ = 12, | |||
CCM_IMP_IV_SZ = 4, /* Size of GCM/CCM AEAD implicit IV */ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fix the comment on this to be only CCM.
Fix the comment for GCM_IMP_IV_SZ to be only GCM.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please fix comment. Then we can accept this PR.
wolfssl/internal.h
Outdated
@@ -1743,6 +1743,7 @@ enum Misc { | |||
AES_CCM_16_AUTH_SZ = 16, /* AES-CCM-16 Auth Tag length */ | |||
AES_CCM_8_AUTH_SZ = 8, /* AES-CCM-8 Auth Tag Length */ | |||
AESCCM_NONCE_SZ = 12, | |||
CCM_IMP_IV_SZ = 4, /* Size of GCM/CCM AEAD implicit IV */ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please fix comment. Then we can accept this PR.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This PR doesn't appear to fix anything, but is an acceptable cleanup. Over to @SparkiDev for final.
Yes, was in response to a github bug report. |
jenkins retest this please |
Fixup places where it should be CCM instead of GCM.
Fixes #7216